/* ==================== 加入我们页样式 ==================== */

.main-content {
    width: 100%;
    min-height: calc(100vh - 285px);
    padding: 120px 0 80px;
}

.join-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 74px;
    display: flex;
    gap: 60px;
}

/* 左侧筛选区域 */
.filter-sidebar {
    width: 164px;
    flex-shrink: 0;
    padding-right: 33px;
    border-right: 1px solid #EDEDED;
}

.filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 21px;
    border-bottom: 1px solid #EDEDED;
}

.filter-title {
    font-size: 13px;
    font-weight: 600;
    color: #000000;
}

.filter-clear {
    font-size: 13px;
    color: #666666;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.filter-clear:hover {
    opacity: 0.7;
}

.filter-group {
    margin-bottom: 40px;
}

.filter-group-first {
    margin-top: 20px;
}

.filter-group-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    color: #000000;
}

.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.filter-option:hover span {
    color: #666666;
}

/* 右侧职位列表 */
.job-list-container {
    flex: 1;
}

.job-list-title {
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 40px;
}

.job-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
}

.job-item {
    background: #FFFFFF;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.job-title {
    height: 27px;
    line-height: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.job-meta {
    font-size: 14px;
    color: #748EA6;
    margin-bottom: 20px;
}

.job-meta span {
    margin-right: 7px;
}

.job-requirements {
    font-size: 13px;
    color: #666666;
    line-height: 1.8;
}

.job-requirements ol {
    margin: 0;
}

.job-requirements li {
    margin-bottom: 8px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.page-btn {
    width: clamp(32px, 3.33vw, 48px);
    height: clamp(32px, 3.33vw, 48px);
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.page-btn img {
    width: clamp(16px, 1.67vw, 24px);
    height: clamp(16px, 1.67vw, 24px);
    display: block;
}

.page-btn:hover:not(:disabled) {
    opacity: 0.7;
}

.page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 8px;
}

.page-number {
    width: clamp(32px, 3.33vw, 48px);
    height: clamp(32px, 3.33vw, 48px);
    border: none;
    background: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: clamp(12px, 0.97vw, 14px);
    color: #666666;
    transition: all 0.3s ease;
}

.page-number:hover {
    background: #F5F5F5;
}

.page-number.active {
    background: #404040;
    color: #FFFFFF;
}

/* ==================== 响应式设计 - 移动端 ==================== */
@media (max-width: 768px) {
    /* Product页面专属Header移动端样式 */
    .product-page .header {
        background-color: #ffffff;
        backdrop-filter: none;
        border-bottom: 1px solid #666666;
    }
    
    .product-page .logo {
        color: #000000;
    }
    
    .product-page .nav-item {
        color: #000000;
        opacity: 1;
    }
    
    .product-page .nav-item:hover {
        opacity: 0.7;
    }
    
    .product-page .nav-item.active {
        opacity: 1;
        border-bottom-color: #000000;
    }
    
    .main-content {
        padding: 100px 0 40px;
    }

    .join-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 40px;
    }

    .filter-sidebar {
        width: 100%;
    }

    .job-list-title {
        font-size: 24px;
    }

    .job-item {
        padding: 20px;
    }

    .job-title {
        font-size: 20px;
    }
}
