/* ======== 招聘页面特定样式 ======== */
        /* 精简版顶部标题 */
        .page-header {
            text-align: center;
            padding: 40px 20px 30px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .page-header h1::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        .page-header p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 招聘页面主体 */
        .jobs-section {
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            flex: 1;
        }
        
        .jobs-section-title {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .jobs-section-title h2 {
            font-size: 2rem;
            color: var(--dark);
            display: inline-block;
            position: relative;
            padding: 0 0 15px 0;
        }
        
        .jobs-section-title h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }
        
        /* 筛选区域 */
        .filters-container {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 25px;
            margin-bottom: 40px;
        }
        
        .filters-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .filter-group {
            flex: 1;
            min-width: 200px;
        }
        
        .filter-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark);
            font-weight: 500;
        }
        
        .filter-select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--light-gray);
            border-radius: 6px;
            background: var(--white);
            font-family: 'Noto Sans SC', sans-serif;
            font-size: 1rem;
            color: var(--text);
            transition: all 0.3s;
        }
        
        .filter-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
        }
        
        .search-container {
            position: relative;
            margin-top: 15px;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 45px 12px 15px;
            border: 1px solid var(--light-gray);
            border-radius: 6px;
            font-family: 'Noto Sans SC', sans-serif;
            font-size: 1rem;
            color: var(--text);
            transition: all 0.3s;
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
        }
        
        .search-job-button {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 0 6px 6px 0;
            padding: 0 20px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .search-button:hover {
            background: var(--primary-dark);
        }
        
        /* 职位列表 */
        .job-list-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .job-card {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 30px;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            border-left: 4px solid var(--primary);
        }
        
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .job-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .job-title {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 5px;
        }
        
        .job-department {
            color: var(--primary);
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        .job-tag {
            background: rgba(255, 160, 0, 0.15);
            color: var(--accent);
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        
        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--text);
        }
        
        .job-meta-item i {
            color: var(--primary);
            width: 20px;
            text-align: center;
        }
        
        .job-description {
            color: var(--text-light);
            margin-bottom: 25px;
            flex-grow: 1;
            line-height: 1.7;
        }
        
        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }
        
        .job-date {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        .job-apply {
            background: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .job-apply:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        /* 分页控件 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }
        
        .pagination-list {
            display: flex;
            list-style: none;
            gap: 10px;
        }
        
        .pagination-item {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .pagination-item a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .pagination-item.active {
            background: var(--primary);
        }
        
        .pagination-item.active a {
            color: white;
        }
        
        .pagination-item:not(.active):hover {
            background: rgba(46, 125, 50, 0.1);
        }
        
        /* 精简底部 */
        .simple-footer {
            text-align: center;
            padding: 20px;
            color: var(--gray);
            font-size: 0.9rem;
            width: 100%;
            background: var(--white);
            box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        }
        