/* ====== 校园招聘页面样式 ====== */
        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding: 0 20px;
        }
        
        /* 职位筛选 */
        .filters-container {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 25px;
            margin: 30px 0;
        }
        
        .filters-row {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .filter-group {
            flex: 1;
            min-width: 200px;
        }
        
        .filter-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        .filter-select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--light-gray);
            border-radius: var(--border-radius);
            background: var(--white);
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .filter-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
        }
        
        .filter-actions {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            margin-top: 10px;
        }
        
        .filter-stats {
            margin-top: 15px;
            color: var(--gray);
            font-size: 0.95rem;
            padding-top: 15px;
            border-top: 1px solid var(--light-gray);
        }
        
        /* 职位列表 */
        .positions-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        
        .position-card {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 30px;
            transition: var(--transition);
            border-left: 4px solid var(--accent);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .position-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .position-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .position-title {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 5px;
        }
        
        .position-department {
            color: var(--accent);
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .position-tag {
            background: rgba(46, 125, 50, 0.1);
            color: var(--primary);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            display: inline-block;
            flex-shrink: 0;
        }
        
        .position-desc {
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .position-details {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--light-gray);
        }
        
        .detail-item {
            display: flex;
            margin-bottom: 12px;
            align-items: center;
        }
        
        .detail-item i {
            width: 24px;
            color: var(--accent);
            margin-right: 10px;
        }
        
        .position-action {
            text-align: center;
            margin-top: 25px;
        }
        
        /* 翻页控制 */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 60px 0;
            gap: 8px;
        }
        
        .page-item {
            display: flex;
        }
        
        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--light-gray);
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .page-link:hover, .page-link.active {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        
        .page-link.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* 管培生项目介绍 */
        .program-intro {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            margin: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: var(--border-radius);
            padding: 50px;
            position: relative;
            overflow: hidden;
            color: var(--white);
        }
        
        .program-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,100 100,0 100,100" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
            opacity: 0.2;
        }
        
        .program-content {
            flex: 1;
            min-width: 300px;
            position: relative;
            z-index: 1;
        }
        
        .program-image {
            flex: 1;
            min-width: 300px;
            max-height: 620px;
            text-align: center;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            position: relative;
            z-index: 1;
        }
        
        .program-image img {
            max-width: 100%;
            height: auto;
            transition: transform 0.5s ease;
            border-radius: var(--border-radius);
        }
        
        .program-image:hover img {
            transform: scale(1.02);
        }
        
        .program-content h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--white);
        }
        
        .program-content p {
            margin-bottom: 25px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* 修改为2x2网格布局 */
        .benefits-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .benefit-card {
            background: rgba(255, 255, 255, 0.15);
            border-radius: var(--border-radius);
            padding: 25px;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.25);
        }
        
        .benefit-card i {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .benefit-card h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--white);
        }
        
        .benefit-card p {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 0;
        }
        
        /* 招聘流程时间线 */
        .timeline-section {
            background: var(--white);
            padding: 60px 20px;
            margin: 40px 0;
        }
        
        .timeline-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .timeline {
            position: relative;
            padding: 40px 0;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            margin-left: -2px;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: 100%;
        }
        
        .timeline-item:nth-child(odd) {
            padding-right: 50%;
        }
        
        .timeline-item:nth-child(even) {
            padding-left: 50%;
        }
        
        .timeline-content {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 30px;
            position: relative;
            transition: var(--transition);
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .timeline-date {
            position: absolute;
            top: 15px;
            font-weight: 700;
            color: var(--primary);
            font-size: 1.2rem;
        }
        
        .timeline-item:nth-child(odd) .timeline-date {
            right: -120px;
            text-align: right;
        }
        
        .timeline-item:nth-child(even) .timeline-date {
            left: -120px;
            text-align: left;
        }
        
        .timeline-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }
        
        .timeline-content p {
            color: var(--text-light);
            line-height: 1.8;
        }
        
        .timeline-content::after {
            content: '';
            position: absolute;
            top: 30px;
            width: 20px;
            height: 20px;
            background: var(--accent);
            border-radius: 50%;
            border: 4px solid var(--white);
        }
        
        .timeline-item:nth-child(odd) .timeline-content::after {
            right: -55px;
        }
        
        .timeline-item:nth-child(even) .timeline-content::after {
            left: -55px;
        }
        
        /* 常见问题 */
        .faq-container {
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            margin: 60px 0;
        }
        
        .faq-item {
            border-bottom: 1px solid var(--light-gray);
        }
        
        .faq-question {
            padding: 25px;
            font-size: 1.2rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--dark);
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: rgba(46, 125, 50, 0.05);
        }
        
        .faq-question::after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            background: rgba(46, 125, 50, 0.03);
        }
        
        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 500px;
        }
        
        /* 按钮样式 */
        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            background: #e68a00;
        }
        
        .btn-primary {
            background: var(--primary);
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
        }
        
        .btn-stellar {
            background: var(--stellar);
        }
        
        .btn-stellar:hover {
            background: #3d0f6e;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }
        
        .btn-outline:hover {
            background: var(--accent);
            color: white;
        }
        
        .btn-light {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-light:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        /* 模块标题 */
        .section-title {
            text-align: center;
            margin: 20px 0 60px 0;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            display: inline-block;
            position: relative;
            padding: 0 0 15px 0;
        }
        
        .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;
        }