

/* 职位详情页样式 */
.job-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.job-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.job-basic-info h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.job-meta {
    color: #666;
    font-size: 16px;
}

.job-line {
    margin: 0 10px;
    color: #ddd;
}

.share-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #666;
    border: 1px solid #eee;
    padding: 6px 12px;
    border-radius: 4px;
}

.share-btn img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.job-section {
    margin-bottom: 50px;
}

.job-section h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-content {
    color: #666;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 10px;
}

.job-apply {
    text-align: center;
    margin: 40px 0;
}

.apply-btn {
    background-color: #0066ff;
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.company-info {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
}

.company-logo {
    flex-shrink: 0;
    margin-right: 20px;
}

.company-logo img {
    width: 48px;
    height: 48px;
    border-radius: 4px;
}

.company-detail h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.company-detail p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.share-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.share-popup.active {
    display: flex;
}

.share-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.share-content img {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}

.share-content p {
    color: #333;
    font-size: 16px;
}

.apply-notice {

    color: #666;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    z-index: 1000;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@media screen and (max-width: 768px) {
    .job-detail-header {
        flex-direction: column;
        gap: 15px;
    }

    .apply-btn {
        width: 100%;
    }
}

/* 联系我们页面样式 */

.contact-title {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title h2 {
    font-size: 32px;
    color: #333;
    position: relative;
    display: inline-block;
}

.contact-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #1890ff;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}




.company-intro h2,
.contact-section h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: normal;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.apply-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.apply-popup.active {
    display: flex;
}

.apply-content {
    background: #fff;
    width: 500px;
    border-radius: 8px;
    padding: 20px;
}

.apply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.close-popup {
    cursor: pointer;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.upload-area {
    border: 1px dashed #ddd;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    position: relative;
}

.upload-btn {
    background: #1890ff;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

input[type="file"] {
    display: none;
}

.file-name {
    margin-top: 10px;
    color: #666;
}

.upload-success {
    display: none;
    align-items: center;
    color: #52c41a;
    margin-top: 10px;
}

.success-icon {
    margin-right: 5px;
}

.submit-btn {
    width: 100%;
    background: #1890ff;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #40a9ff;
}

/* 上传成功提示框样式 */
.toast-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px 30px;
    border-radius: 4px;
    z-index: 2000;
    display: none;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}