/* 新的全屏背景容器 */
.main-background {
    background: linear-gradient(135deg, #12ada9 0%, #0e9c99 30%, #0a7f7c 100%);
    background-image: radial-gradient(circle at 10% 20%, rgba(76, 191, 255, 0.15) 0%, transparent 30%), radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 30%), radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%), linear-gradient(to right, rgba(76, 191, 255, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(76, 191, 255, 0.1) 1px, transparent 1px);
    background-size: 150px 150px, 150px 150px, 300px 300px, 30px 30px, 30px 30px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px 0;
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% {
        background-position: 0% 0%, 0% 0%, 50% 50%, 0% 0%, 0% 0%;
    }
    50% {
        background-position: 10% 20%, -10% -20%, 60% 60%, 5% 5%, 5% 5%;
    }
}
.back-home-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #12ada9;
    border-radius: 20px;
    padding: 8px 15px;
    color: #12ada9;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: none;
    text-shadow: none;
}

.back-home-btn:hover {
    background: #e8f7f7;
    border-color: #0e9c99;
    color: #0e9c99;
    transform: translateY(2px);
    box-shadow: none;
}

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(18, 173, 169, 0.8);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: rgba(14, 156, 153, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.main-container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    margin-top: 40px;
}

.top-banner {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    border-radius: 15px 15px 15px 15px;
    overflow: hidden;
    border-bottom: none;
    padding: 0 35px;
    background: linear-gradient(135deg, rgba(18, 173, 169, 0.9) 0%, rgba(14, 156, 153, 0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
    animation: bannerGlow 3s ease-in-out infinite alternate;
}

@keyframes bannerGlow {
    0% {
        background: linear-gradient(135deg, rgba(18, 173, 169, 0.9) 0%, rgba(14, 156, 153, 0.9) 100%);
        border-color: rgba(255, 255, 255, 0.3);
    }
    100% {
        background: linear-gradient(135deg, rgba(20, 185, 180, 0.95) 0%, rgba(16, 168, 165, 0.95) 100%);
        border-color: rgba(255, 255, 255, 0.5);
    }
}


.top-banner-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
    transition: all 0.5s ease;
    animation: imageFloat 6s ease-in-out infinite;
    transform-origin: center;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

.top-banner-img:hover {
    transform: scale(1.1) rotate(3deg);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
}

.top-banner-text {
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    color: white;
    margin-left: 30px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.5), 0 0 90px rgba(0, 212, 255, 0.3);
    letter-spacing: 6px;
    font-family: "Microsoft Yahei", "PingFang SC", sans-serif;
    white-space: nowrap;
    position: relative;
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 212, 255, 0.8);
    }
    100% {
        text-shadow: 0 5px 20px rgba(0, 0, 0, 1), 0 0 40px rgba(0, 212, 255, 1), 0 0 70px rgba(0, 212, 255, 0.6);
    }
}

.top-banner-text::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #00d4ff 20%, #4cbbff 50%, #00d4ff 80%, transparent 100%);
    border-radius: 2px;
    animation: lineFlow 3s linear infinite;
    background-size: 200% 100%;
}

@keyframes lineFlow {
    0% {
        background-position: -100% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 0 0 20px 20px;
    padding: 30px;
    width: 100%;
    border: 1px solid rgba(76, 191, 255, 0.3);
    border-top: none;
    box-shadow: 0 8px 32px rgba(0, 10, 30, 0.2), 0 0 20px rgba(76, 191, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: visible;
    z-index: 1;
    min-height: auto;
    max-height: none;
}

.form-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #4cbbff, #00d4ff);
    background-size: 200% 100%;
    animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.job-carousel {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(76, 191, 255, 0.2);
    overflow: hidden;
    width: 100%;
}

.job-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.job-item {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    padding: 0 5px;
    padding-bottom: 0;
}

.job-item-container {
    width: 100%;
    overflow: hidden;
}

.job-switcher {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 10px 0;
    position: relative;
    flex-wrap: wrap;
}

.switch-btn {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #12ada9;
    border-radius: 25px;
    color: #12ada9;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    box-shadow: none;
    flex: 1;
    min-width: 0;
    max-width: 300px;
}

.switch-btn:hover {
    background: #e8f7f7;
    border-color: #0e9c99;
    color: #0e9c99;
    transform: none;
    box-shadow: none;
}

.switch-btn.active {
    background: #12ada9;
    color: white;
    border-color: #12ada9;
    box-shadow: none;
    font-weight: 700;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.indicator-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(18, 173, 169, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: none;
}

.indicator-dot.active {
    background: #12ada9;
    transform: scale(1.3);
    box-shadow: none;
}

.job-title {
    color: #081229;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 20px;
    background: #12ada9;
    border-radius: 2px;
}

.job-salary {
    color: #ff6b5e;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    padding: 8px 15px;
    background: linear-gradient(135deg, rgba(255, 107, 94, 0.1) 0%, rgba(255, 138, 128, 0.05) 100%);
    border-radius: 10px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.job-salary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.job-salary:hover::before {
    left: 100%;
}

.job-salary:hover {
    background: linear-gradient(135deg, rgba(255, 107, 94, 0.15) 0%, rgba(255, 138, 128, 0.08) 100%);
    border-color: rgba(255, 107, 94, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 94, 0.15);
}

.job-ability {
    color: #334155;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.7;
    padding: 10px 12px;
    background: rgba(18, 173, 169, 0.05);
    border-radius: 8px;
}

.job-section {
    margin-bottom: 16px;
}

.job-section-title {
    color: #081229;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 6px;
    position: relative;
    display: inline-block;
}

.job-section-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: rgba(18, 173, 169, 0.2);
    border-radius: 1px;
}

.job-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2.5px;
    background: linear-gradient(90deg, #12ada9, #00d4ff);
    border-radius: 1.5px;
    transition: width 0.3s ease;
}

.job-section-title:hover::after {
    width: 70px;
}

.job-section-content {
    color: #334155;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 10px;
    padding-top: 4px;
}

.job-section-content ul {
    padding-left: 20px;
    margin: 8px 0;
}

.job-section-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 8px;
    line-height: 1.6;
}

.job-section-content li::before {
    content: "•";
    color: #12ada9;
    font-size: 18px;
    position: absolute;
    left: -16px;
    top: 0;
}

.form-title {
    color: #081229;
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.form-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #12ada9, #00d4ff, #12ada9);
    border-radius: 2px;
}

.form-item {
    margin-bottom: 16px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.form-label {
    width: 120px;
    color: #081229;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
    padding-right: 15px;
}

.select-wrapper {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.custom-select {
    width: 100%;
    position: relative;
    z-index: 99;
}

.select-trigger {
    width: 100%;
    height: 38px;
    background: #ffffff;
    border: 1px solid rgba(18, 173, 169, 0.3);
    border-radius: 20px;
    padding: 0 35px 0 15px;
    font-size: 14px;
    color: #081229;
    outline: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    min-height: 38px;
    max-height: 38px;
    box-sizing: border-box;
}

.select-trigger.selected {
    color: #081229;
}

.select-trigger:focus,
.select-trigger:hover {
    border-color: #12ada9;
    box-shadow: 0 0 0 2px rgba(18, 173, 169, 0.1);
}

.custom-select::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 10px;
    color: #12ada9;
    pointer-events: none;
}

.select-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(18, 173, 169, 0.3);
    border-radius: 12px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 10, 30, 0.08);
}

.select-options.show {
    display: block;
}

.option {
    padding: 10px 15px;
    font-size: 14px;
    color: #081229;
    cursor: pointer;
    transition: background 0.2s ease;
}

.option:hover {
    background: rgba(18, 173, 169, 0.1);
}

.form-item input,
.form-item textarea {
    flex: 1;
    background: #ffffff;
    border: 1px solid rgba(18, 173, 169, 0.3);
    border-radius: 20px;
    padding: 0 15px;
    font-size: 14px;
    color: #081229;
    outline: none;
    transition: all 0.3s ease;
    height: 38px;
    min-height: 38px;
    max-height: 38px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
    max-width: 300px;
}

.form-item input::placeholder,
.form-item textarea::placeholder {
    color: #081229;
    opacity: 0.7;
}

.form-item textarea {
    height: 100px;
    padding: 10px 15px;
    resize: none;
    line-height: 1.5;
    font-size: 14px;
    min-height: 100px;
    max-height: 150px;
    overflow-y: auto;
}

.form-item input[type="number"] {
    -moz-appearance: textfield;
}

.form-item input[type="number"]::-webkit-outer-spin-button,
.form-item input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-item input:focus,
.form-item textarea:focus {
    border-color: #12ada9;
    box-shadow: 0 0 0 2px rgba(18, 173, 169, 0.1);
    transform: none;
}

.gender-selector {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 300px;
}

.gender-option {
    flex: 1;
    height: 38px;
    background: #ffffff;
    border: 1px solid rgba(18, 173, 169, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #081229;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: normal;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.gender-option:hover {
    border-color: #12ada9;
    background: rgba(18, 173, 169, 0.05);
}

.gender-option.selected {
    background: #12ada9;
    color: white;
    border-color: #12ada9;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 10, 30, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
    backdrop-filter: blur(4px);
}

.preview-modal {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 10, 30, 0.2);
    border: 1px solid rgba(76, 191, 255, 0.3);
    margin: 0 auto;
    position: relative;
}

.preview-title {
    color: #081229;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(76, 191, 255, 0.2);
    padding-bottom: 15px;
    text-align: center;
}

.preview-content {
    color: #334155;
    font-size: 16px;
    line-height: 1.8;
    white-space: pre-wrap;
    word-break: break-all;
}

.close-modal-btn {
    width: 100%;
    height: 44px;
    background: #fff;
    border: 2px solid #12ada9;
    border-radius: 24px;
    color: #12ada9;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.close-modal-btn:hover {
    background: #e8f7f7;
    color: #0e9c99;
    border-color: #0e9c99;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(18, 173, 169, 0.2);
}

.preview-btn {
    width: 100%;
    height: 48px;
    background: #fff;
    border: 1px solid #12ada9;
    border-radius: 24px;
    color: #12ada9;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.preview-btn:hover {
    background: #e8f7f7;
    color: #0e9c99;
    border-color: #0e9c99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 173, 169, 0.2);
}

.submit-btn {
    width: 100%;
    height: 48px;
    background: #12ada9;
    border: 2px solid #12ada9;
    border-radius: 24px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.submit-btn:hover {
    background: #0e9c99;
    border-color: #0e9c99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 156, 153, 0.25);
}

.submit-tip {
    color: #12ada9;
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    display: none;
}

@media (max-width:768px) {
    .main-background {
        padding: 10px 0;
        overflow-y: auto;
        min-height: 100vh;
        display: block;
    }
    
    .main-container {
        width: 92%;
        padding: 0 10px;
        margin-top: 25px;
    }
    
    .back-home-btn {
        position: absolute;
        top: -45px;
        right: 10px;
        padding: 6px 12px;
        font-size: 13px;
        border-width: 1.5px;
    }
    
    .top-banner {
        height: 100px;
        padding: 0 20px;
        border-radius: 15px;
        margin-bottom: 15px;
        flex-direction: row;
        box-shadow: none;
    }
    
    .top-banner-img {
        height: 70px;
    }
    
    .top-banner-text {
        font-size: 38px;
        margin-left: 20px;
        letter-spacing: 4px;
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 212, 255, 0.6);
    }
    
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .form-container {
        padding: 25px;
        max-width: 100%;
        overflow: visible;
        min-height: auto;
        margin-bottom: 30px;
    }
    
    .job-switcher {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .switch-btn {
        padding: 8px 15px;
        font-size: 14px;
        min-width: 0;
        flex: 1;
        max-width: 300px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .job-title {
        font-size: 18px;
    }
    
    .job-salary {
        font-size: 13px;
        padding: 6px 12px;
        margin-bottom: 6px;
    }
    
    .job-ability {
        font-size: 13px;
    }
    
    .job-section-content {
        font-size: 13px;
    }
    
    .form-item {
        flex-direction: row;
        align-items: center;
        margin-bottom: 14px;
    }
    
    .form-label {
        width: 90px;
        margin-bottom: 0;
        font-size: 13px;
        flex-shrink: 0;
    }
    
    .form-item input,
    .form-item textarea {
        width: 100%;
        font-size: 13px;
        height: 38px;
        min-height: 38px;
        max-height: 38px;
        color: #081229;
        max-width: 300px;
    }
    
    .form-item input::placeholder,
    .form-item textarea::placeholder {
        color: #081229;
        opacity: 0.7;
        font-size: 13px;
    }
    
    .form-item textarea {
        height: 90px;
        min-height: 90px;
        max-height: 120px;
        font-size: 13px;
    }
    
    .gender-selector {
        width: 100%;
        max-width: 300px;
    }
    
    .select-wrapper {
        max-width: 300px;
    }
    
    .select-trigger {
        font-size: 13px;
        height: 38px;
        padding: 0 30px 0 12px;
        min-height: 38px;
        max-height: 38px;
        color: #081229;
    }
    
    .custom-select::after {
        right: 12px;
        font-size: 9px;
        color: #12ada9;
    }
    
    .option {
        font-size: 13px;
        padding: 8px 12px;
        color: #081229;
    }
    
    .preview-modal {
        padding: 20px;
        width: 95%;
        max-height: 70vh;
    }
    
    .preview-title {
        font-size: 18px;
    }
    
    .preview-content {
        font-size: 14px;
    }
    
    .preview-btn,
    .submit-btn,
    .close-modal-btn {
        font-size: 16px;
        height: 44px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .close-modal-btn {
        font-size: 15px;
        height: 42px;
    }
    
    .gender-selector {
        gap: 8px;
    }
    
    .gender-option {
        height: 38px;
        font-size: 13px;
        border-radius: 18px;
        color: #081229;
    }
    
    input,
    textarea {
        font-size: 12px !important;
        -webkit-user-select: text;
        user-select: text;
    }
    
    .modal-overlay {
        padding: 20px;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
}

@media (max-width:480px) {
    .top-banner {
        height: 90px;
        padding: 0 15px;
        box-shadow: none;
    }
    
    .top-banner-img {
        height: 60px;
    }
    
    .top-banner-text {
        font-size: 32px;
        margin-left: 15px;
        letter-spacing: 3px;
    }
    
    .back-home-btn {
        top: -40px;
        right: 10px;
        padding: 5px 10px;
        font-size: 12px;
        border-width: 1px;
    }
    
    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .main-container {
        margin-top: 25px;
    }
    
    .switch-btn {
        padding: 7px 12px;
        font-size: 13px;
        min-width: 0;
        max-width: 300px;
    }
    
    .form-label {
        width: 80px;
        font-size: 12px;
    }
    
    .form-item input,
    .form-item textarea,
    .select-trigger,
    .gender-option {
        font-size: 12px;
        max-width: 300px;
    }
    
    .select-wrapper {
        max-width: 300px;
    }
    
    .form-item input::placeholder,
    .form-item textarea::placeholder {
        font-size: 12px;
    }
    
    .gender-selector {
        gap: 6px;
        max-width: 300px;
    }
    
    .preview-modal {
        padding: 15px;
        width: 98%;
        max-height: 75vh;
    }
    
    .preview-btn,
    .submit-btn,
    .close-modal-btn {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media (max-width:380px) {
    .main-background {
        padding: 10px 0;
    }
    
    .main-container {
        width: 96%;
        padding: 0 8px;
        margin-top: 40px;
    }
    
    .top-banner {
        height: 80px;
        padding: 0 12px;
        flex-direction: row;
    }
    
    .top-banner-img {
        height: 50px;
    }
    
    .top-banner-text {
        font-size: 28px;
        margin-left: 12px;
        letter-spacing: 2px;
    }
    
    .back-home-btn {
        top: -35px;
        right: 10px;
        padding: 4px 8px;
        font-size: 11px;
        border-width: 1px;
    }
    
    .back-home-btn span {
        display: none;
    }
    
    .back-to-top-btn {
        bottom: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 18px;
        border-width: 1px;
    }
    
    .job-switcher {
        gap: 8px;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .switch-btn {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 0;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .form-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .form-item {
        margin-bottom: 12px;
        flex-direction: row;
        align-items: center;
    }
    
    .form-label {
        width: 70px;
        font-size: 11px;
        padding-right: 10px;
    }
    
    .form-item input,
    .form-item textarea,
    .select-trigger,
    .gender-option {
        font-size: 11px;
        max-width: 200px;
    }
    
    .select-wrapper {
        max-width: 200px;
    }
    
    .form-item input,
    .form-item textarea {
        padding: 0 10px;
    }
    
    .select-trigger {
        padding: 0 25px 0 10px;
    }
    
    .custom-select::after {
        right: 8px;
        font-size: 8px;
    }
    
    .gender-selector {
        gap: 5px;
        max-width: 200px;
    }
    
    .gender-option {
        font-size: 11px;
        padding: 0 5px;
    }
    
    .preview-btn,
    .submit-btn,
    .close-modal-btn {
        font-size: 15px;
        height: 42px;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .close-modal-btn {
        font-size: 14px;
        height: 40px;
    }
    
    .job-salary {
        font-size: 13px;
        padding: 5px 10px;
        margin-bottom: 5px;
    }
    
    .job-ability {
        font-size: 12px;
        padding: 8px 10px;
        margin-bottom: 12px;
    }
    
    .job-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .job-section-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .job-section-content {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .job-section-content li {
        margin-bottom: 6px;
        line-height: 1.5;
    }
    
    .modal-overlay {
        padding: 10px;
    }
    
    .preview-modal {
        padding: 15px;
        max-height: 80vh;
    }
    
    .preview-btn,
    .submit-btn,
    .close-modal-btn {
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

@media (min-width:1200px) {
    .top-banner-text {
        font-size: 56px;
        letter-spacing: 8px;
    }
    
    .top-banner-img {
        height: 100px;
    }
    
    .top-banner {
        height: 140px;
        box-shadow: none;
    }
    
    .switch-btn {
        padding: 12px 30px;
        font-size: 18px;
        min-width: 200px;
        max-width: 300px;
    }
    
    .form-item input,
    .form-item textarea {
        max-width: 700px;
    }
    
    .gender-selector {
        max-width: 200px;
    }
    
    .preview-btn,
    .submit-btn,
    .close-modal-btn {
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .select-wrapper {
        max-width: 200px;
    }
}
/* 修正工作区域下拉框样式 */
.form-item {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  position: relative; /* 为下拉框定位提供参考 */
}

.work-area-select {
  width: 180px;
  padding: 8px 12px;
  border: 1px solid rgba(18, 173, 169, 0.3);
  border-radius: 20px;
  box-sizing: border-box;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  
  /* 自定义下拉箭头 */
  background-image: 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='%2312ada9' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 30px;
}

/* 确保"请选择"选项始终在最前面 */
.work-area-select option[value=""] {
  color: #999; /* 灰色提示文字 */
  font-style: italic; /* 斜体表示提示 */
}

/* 确保其他选项正常显示 */
.work-area-select option:not([value=""]) {
  color: #333;
  font-style: normal;
}

/* 鼠标悬停在下拉框上时 */
.work-area-select:hover {
  border-color: rgba(18, 173, 169, 0.7);
  box-shadow: 0 0 5px rgba(18, 173, 169, 0.2);
}

/* 下拉框获得焦点时 */
.work-area-select:focus {
  border-color: rgba(18, 173, 169, 1);
  box-shadow: 0 0 8px rgba(18, 173, 169, 0.3);
}

/* 下拉选项样式 */
.work-area-select option {
  padding: 8px 12px;
  font-size: 14px;
}

/* 适配移动端 */
@media (max-width: 768px) {
  .form-item {
    flex-direction: column;
    align-items: stretch;
  }
  
  .work-area-select {
    width: 100%;
    max-width: 300px;
    margin-bottom: 8px;
    font-size: 14px;
  }
}

/* 对于超小屏幕 */
@media (max-width: 480px) {
  .work-area-select {
    font-size: 13px;
    padding: 6px 10px;
  }
}