        .h-16 {
            height: 4rem;
        }
        
        .items-center {
            align-items: center;
        }
        
        .justify-between {
            justify-content: space-between;
        }
        
        .common-wrapper-main {
            flex: 1;
            display: flex;
        }
        
        .common-right-wrap {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .common-right-box {
            flex: 1;
            background-color: #fff;
            margin: 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
        
        .recruitment-list {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        /* 标题栏样式 */
        .resume-list-title {
            padding: 1.5rem 2rem 0;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .resume-list-title-logo-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .resume-list-title-logo {
            width: 2.25rem;
            height: 2.25rem;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            border-radius: 0.5rem;
        }
        
        .resume-list-title-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .mail-tag-ntes {
            position: relative;
            display: inline-block;
            height: 1.25rem;
            line-height: 1.25rem;
            font-size: 0.75rem;
            border-radius: 0.625rem;
            overflow: hidden;
        }
        
        .mail-tag-mini {
            padding: 0 0.5rem;
        }
        
        .v074 .mail-tag-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            opacity: 0.1;
        }
        
        .mail-tag-content {
            position: relative;
            color: #dc2626;
            font-weight: 500;
        }
        
        /* 筛选导航样式 */
        .resume-list-nav {
            padding: 1.5rem 2rem;
            border-bottom: 1px solid #e5e7eb;
            background-color: #f9fafb;
        }
        
        .resume-list-nav-group {
            margin-bottom: 1.25rem;
        }
        
        .resume-list-nav-group:last-child {
            margin-bottom: 0;
        }
        
        .resume-list-nav-title {
            font-size: 0.875rem;
            font-weight: 500;
            color: #6b7280;
            margin-bottom: 0.75rem;
        }
        
        .resume-list-nav-items {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .resume-list-nav-item {
            padding: 0.5rem 1rem;
            background-color: #fff;
            border: 1px solid #d1d5db;
            border-radius: 1rem;
            font-size: 0.875rem;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.2s;
            user-select: none;
            white-space: nowrap;
            text-decoration: none;
            display: inline-block;
        }
        
        .resume-list-nav-item:hover {
            border-color: #3b82f6;
            color: #3b82f6;
        }
        
        .resume-list-nav-item.cur {
            background-color: #3b82f6;
            border-color: #3b82f6;
            color: #fff;
        }
        
        /* 列表容器 */
        .recruitment-list-box {
            flex: 1;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        /* 表格样式 - 优化版 */
        .recruitment-list-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.875rem;
            table-layout: fixed;
        }
        
        .recruitment-list-table thead {
            background-color: #f9fafb;
            position: sticky;
            top: 0;
            z-index: 10;
        }
        
        .recruitment-list-table th {
            padding: 1rem;
            text-align: left;
            font-weight: 500;
            color: #6b7280;
            border-bottom: 1px solid #e5e7eb;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .recruitment-list-table tbody tr {
            border-bottom: 1px solid #f3f4f6;
            transition: background-color 0.2s;
        }
        
        .recruitment-list-table tbody tr:hover {
            background-color: #f9fafb;
        }
        
        .recruitment-list-table td {
            padding: 1rem;
            vertical-align: top;
            border-bottom: 1px solid #f3f4f6;
        }
        
        /* 各列宽度设置 */
        .row-1 { width: 15%; }  /* 公司 */
        .row-3 { width: 10%; }  /* 行业 */
        .row-4 { width: 8%; }   /* 类型 */
        .row-6 { width: 29%; }  /* 职位 - 加宽 */
        .row-7 { width: 10%; }  /* 地点 */
        .row-8 { width: 8%; }   /* 更新时间 */
        .row-9 { width: 8%; }   /* 截止时间 */
        .row-10 { width: 8%; }  /* 操作 */
        
        /* 表格单元格内容样式 - 优化 */
        .recruitment-list-table p {
            margin: 0;
            line-height: 1.5;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            cursor: pointer;
            position: relative;
        }
        
        /* 职位列Tooltip样式 */
        .position-cell {
            position: relative;
        }
        
        .position-cell p:hover::after {
            content: attr(data-fulltext);
            position: absolute;
            left: 0;
            top: 100%;
            background: #1f2937;
            color: white;
            padding: 0.75rem 1rem;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            line-height: 1.5;
            white-space: normal;
            max-width: 400px;
            z-index: 100;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            margin-top: 0.5rem;
        }
        
        .tag-1 {
            display: inline-block;
            padding: 0.125rem 0.5rem;
            background-color: #dbeafe;
            color: #1d4ed8;
            border-radius: 0.625rem;
            font-size: 0.75rem;
            font-weight: 500;
            white-space: nowrap;
        }
        
        .row-9 {
            color: #ef4444;
            font-weight: 500;
            white-space: nowrap;
        }
        
        .row-10 a {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background-color: #3b82f6;
            color: #fff;
            border-radius: 0.25rem;
            text-decoration: none;
            font-size: 0.8125rem;
            font-weight: 500;
            transition: all 0.2s;
            white-space: nowrap;
        }
        
        .row-10 a:hover {
            background-color: #2563eb;
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
        }
        
        /* 分页样式 */
        .pagination-container {
            padding: 1.25rem 2rem;
            border-top: 1px solid #e5e7eb;
            background-color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        
        .pagination-button {
            padding: 0.375rem 0.75rem;
            background-color: #fff;
            border: 1px solid #d1d5db;
            border-radius: 0.25rem;
            color: #6b7280;
            cursor: pointer;
            font-size: 0.875rem;
            transition: all 0.2s;
            min-width: 2.5rem;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }
        
        .pagination-button:hover:not(:disabled) {
            border-color: #3b82f6;
            color: #3b82f6;
        }
        
        .pagination-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .pagination-button.active {
            background-color: #3b82f6;
            border-color: #3b82f6;
            color: #fff;
        }
        
        .page-info {
            font-size: 0.875rem;
            color: #6b7280;
            margin: 0 0.75rem;
            white-space: nowrap;
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .mobile-menu.active {
                right: 0;
            }
            
            .mobile-menu-overlay.active {
                display: block;
            }
            
            /* 校招页面移动端适配 */
            .common-right-box {
                margin: 0.5rem;
                border-radius: 0.375rem;
            }
            
            .resume-list-title,
            .resume-list-nav {
                padding: 1rem;
            }
            
            .resume-list-nav-items {
                gap: 0.375rem;
            }
            
            .resume-list-nav-item {
                padding: 0.375rem 0.75rem;
                font-size: 0.8125rem;
            }
            
            .recruitment-list-table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
                font-size: 0.8125rem;
            }
            
            .recruitment-list-table th,
            .recruitment-list-table td {
                min-width: 100px;
                padding: 0.75rem;
            }
            
            .row-6 {
                min-width: 200px;
                max-width: 200px;
            }
            
            .recruitment-list-table p {
                max-width: 200px;
            }
            
            /* 移动端Tooltip优化 */
            .position-cell p:hover::after {
                position: fixed;
                left: 1rem;
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
                max-width: calc(100vw - 2rem);
                max-height: 60vh;
                overflow-y: auto;
                margin-top: 0;
                z-index: 1000;
            }
            
            .pagination-container {
                padding: 1rem;
                gap: 0.375rem;
            }
            
            .pagination-button {
                padding: 0.25rem 0.5rem;
                min-width: 2rem;
                font-size: 0.8125rem;
            }
            
            .page-info {
                margin: 0 0.5rem;
                font-size: 0.8125rem;
            }
            
        }
        
        @media (max-width: 480px) {
            .resume-list-title-logo-wrapper {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
            }
            
            .city-grid,
            .mobile-nav-grid {
                grid-template-columns: repeat(1, 1fr);
            }
            
            .nav-search input {
                width: 120px;
            }
        }
        
        /* 滚动条样式 */
        .common-scroll {
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #cbd5e1 #f1f5f9;
        }
        
        .common-scroll::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        
        .common-scroll::-webkit-scrollbar-track {
            background: #f1f5f9;
        }
        
        .common-scroll::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }
        
        .common-scroll::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }