        /* 动画关键帧 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInLeft {
            from {
                transform: translateX(-30px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        @keyframes underlineExpand {
            from {
                width: 0;
            }
            to {
                width: 100%;
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* 核心样式变量 */
        :root {
            --primary-color: #ffb600;
            --primary-dark: #e6a400;
            --dark-color: #1a1a1a;
            --border-color: #e0e0e0;
            --light-color: #f8f9fa;
        }
        
        /* 页面整体动画 */
        .body-inner {
            animation: fadeIn 0.5s ease-out;
        }
        
        /* 横幅样式 - 与其他页面一致 */
        .banner-area {
            position: relative;
            height: 300px;
            background-size: cover;
            background-position: center;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.2) 80%, rgba(0,0,0,0) 100%);
        }
        
        /* 横幅内容容器 */
        .banner-container {
            width: 100%;
        }
        
        .banner-content {
            position: relative;
            z-index: 2;
            color: white;
            text-align: left;
            padding: 0 15px;
        }
        
        /* 修改标题样式 - 添加黄色下划线 */
        .banner-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            animation: slideInLeft 0.8s ease-out 0.3s both;
            opacity: 0;
        }
        
        /* 黄色下划线 */
        .banner-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
            animation: underlineExpand 0.6s ease-out 1.1s forwards;
        }
        
        .banner-description {
            font-size: 1rem;
            opacity: 0.9;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 0.8s ease-out 0.5s both;
            opacity: 0;
        }
        
        /* 面包屑导航样式 */
        .breadcrumb-container {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
            animation: fadeInUp 0.6s ease-out 0.4s both;
            opacity: 0;
        }
        
        .breadcrumb-container nav {
            background: transparent;
            padding: 0;
            margin: 0;
        }
        
        .breadcrumb-container .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }
        
        .breadcrumb-container .breadcrumb-item a {
            color: #666;
        }
        
        .breadcrumb-container .breadcrumb-item.active {
            color: #333;
        }
        
        .breadcrumb-container .breadcrumb-item + .breadcrumb-item::before {
            content: " / ";
            color: #999;
        }
        
        /* 筛选区域动画 */
        .project-area {
            animation: fadeInUp 0.6s ease-out 0.6s both;
            opacity: 0;
        }
        
        /* 筛选选项样式 */
        .filter {
            background: #fff;
            border: 1px solid #eee;
            padding: 20px;
            border-radius: 0px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        .option {
            margin-bottom: 20px;
        }
        
        .option:last-child {
            margin-bottom: 0;
        }
        
        .option-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .option ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 0;
            margin: 0;
            list-style: none;
        }
        
        .option ul li a {
            display: inline-block;
            padding: 8px 16px;
            background: #f5f5f5;
            color: #666;
            text-decoration: none;
            border-radius: 0px;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .option ul li a:hover {
            background: rgba(255, 182, 0, 0.1);
            color: var(--primary-color);
        }
        
        .option ul li a.active {
            background: var(--primary-color);
            color: #fff;
        }
        
        /* 招聘列表区域动画 */
        .job-item {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 0px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            animation: fadeInUp 0.5s ease-out;
            opacity: 0;
            animation-fill-mode: forwards;
        }
        
        /* 为每个招聘项设置延迟动画 */
        .job-item:nth-child(1) { animation-delay: 0.8s; }
        .job-item:nth-child(2) { animation-delay: 0.9s; }
        .job-item:nth-child(3) { animation-delay: 1.0s; }
        .job-item:nth-child(4) { animation-delay: 1.1s; }
        .job-item:nth-child(5) { animation-delay: 1.2s; }
        .job-item:nth-child(6) { animation-delay: 1.3s; }
        .job-item:nth-child(7) { animation-delay: 1.4s; }
        .job-item:nth-child(8) { animation-delay: 1.5s; }
        .job-item:nth-child(9) { animation-delay: 1.6s; }
        .job-item:nth-child(10) { animation-delay: 1.7s; }
        .job-item:nth-child(11) { animation-delay: 1.8s; }
        .job-item:nth-child(12) { animation-delay: 1.9s; }
        .job-item:nth-child(13) { animation-delay: 2.0s; }
        .job-item:nth-child(14) { animation-delay: 2.1s; }
        .job-item:nth-child(15) { animation-delay: 2.2s; }
        .job-item:nth-child(16) { animation-delay: 2.3s; }
        
        .job-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-color: var(--primary-color);
        }
        
        .job-item h5 {
            font-weight: 600;
            color: #333;
        }
        
        .job-item h5 a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .job-item h5 a:hover {
            color: var(--primary-color);
        }
        
        .text-danger {
            color: #ff6b6b !important;
            font-weight: 600;
        }
        
        .text-truncate {
            color: #666;
        }
        
        /* 申请按钮样式 */
        .btn-primary {
            background: var(--primary-color);
            border: none;
            padding: 8px 20px;
            border-radius: 0px;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 182, 0, 0.3);
        }
        
        /* 分页样式 */
        .pagination-wrapper {
            margin-top: 30px;
            text-align: center;
            animation: fadeInUp 0.6s ease-out 2.4s both;
            opacity: 0;
        }
        
        nav ul.pagination {
            display: flex;
            justify-content: center;
            padding-left: 0;
            list-style: none;
        }
        
        .page-item {
            margin: 0 2px;
        }
        
        .page-item.active .page-link {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
        }
        
        .page-link {
            position: relative;
            display: block;
            padding: .4rem .65rem; 
            margin-left: -1px;
            line-height: 1.2; 
            color: var(--primary-color);
            background-color: #fff;
            border: 1px solid #dee2e6;
            text-decoration: none;
            font-size: 14px; 
        }
        
        .page-link:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
        }
        
        .page-item.disabled .page-link {
            color: #6c757d;
            pointer-events: none;
            cursor: auto;
            background-color: #fff;
            border-color: #dee2e6;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .banner-area {
                height: 150px;
            }
            
            .banner-title {
                font-size: 1.8rem;
                padding-bottom: 12px;
            }
            
            .banner-title::after {
                height: 3px;
            }
            
            .banner-description {
                font-size: 0.9rem;
            }
            
            .job-item {
                padding: 20px;
            }
        }
        
        @media (max-width: 992px) {
            .banner-area {
                height: 140px;
            }
            
            .banner-title {
                font-size: 1.6rem;
            }
            
            .col-md-8, .col-md-4 {
                width: 100%;
            }
            
            .job-item .row {
                flex-direction: column;
            }
            
            .d-flex.flex-column {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                margin-top: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .banner-area {
                height: 130px;
            }
            
            .banner-title {
                font-size: 1.4rem;
                padding-bottom: 10px;
            }
            
            .banner-title::after {
                height: 2px;
            }
            
            .filter {
                padding: 15px;
            }
            
            .option ul {
                gap: 8px;
            }
            
            .option ul li a {
                padding: 6px 12px;
                font-size: 13px;
            }
            
            .job-item {
                padding: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .banner-area {
                height: 120px;
            }
            
            .banner-title {
                font-size: 1.2rem;
                margin-bottom: 5px;
                padding-bottom: 8px;
            }
            
            .filter {
                padding: 10px;
            }
            
            .option-title {
                font-size: 14px;
            }
            
            .option ul {
                gap: 5px;
            }
            
            .option ul li a {
                padding: 5px 10px;
                font-size: 12px;
            }
            
            .job-item h5 {
                font-size: 14px;
            }
            
            .job-item .text-truncate {
                font-size: 12px;
            }
            
            .btn-primary {
                padding: 6px 15px;
                font-size: 13px;
            }
            
            .page-link {
                padding: .35rem .55rem; 
                font-size: 13px; 
            }
        }