.resume-filter-container {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 20px;
}

.filter-line {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.filter-line:last-child {
    margin-bottom: 0;
}

.filter-label {
    width: 80px;
    font-weight: 500;
    color: #333;
    flex-shrink: 0;
}

.filter-options {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-option {
    padding: 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
}

.filter-option:hover {
    color: #1e88e5;
}

.filter-option.active {
    background-color: #1e88e5;
    color: #fff;
}

.search-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    padding: 0 15px;
    font-size: 14px;
}

.search-btn {
    height: 40px;
    padding: 0 20px;
    background-color: #1e88e5;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
}

.search-btn:hover {
    background-color: #1976d2;
}

/* 搜索建议下拉菜单 */
.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: -1px;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.search-suggestions .suggestion-title {
    padding: 8px 15px;
    font-size: 12px;
    color: #999;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.search-suggestions .suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.search-suggestions .suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestions .suggestion-item:hover {
    background-color: #f5f9ff;
}

.search-suggestions .suggestion-item.active {
    background-color: #edf2fc;
}

.search-suggestions .resume-name {
    font-weight: 500;
    color: #333;
    margin-right: 10px;
    font-size: 14px;
    margin-bottom: 0;
}

.search-suggestions .resume-title {
    font-size: 12px;
    color: #666;
    margin-bottom: 0;
}

.search-suggestions .intention-item {
    color: #1e88e5;
}

.search-suggestions .highlight {
    color: #ff6b00;
    font-weight: bold;
}

.search-suggestions .suggestion-empty {
    padding: 15px;
    text-align: center;
    color: #999;
}

.resume-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 20px;
}

.resume-card {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.resume-card:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.resume-header {
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

.resume-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
}

.resume-title-container {
    flex: 1;
}

.resume-name {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.resume-name .gender-icon {
    margin-left: 5px;
    font-size: 14px;
}

.gender-male {
    color: #2196f3;
}

.gender-female {
    color: #f06292;
}

.resume-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.resume-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #999;
}

.resume-body {
    padding: 15px 20px;
    flex: 1;
}

.resume-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.resume-tag {
    padding: 4px 8px;
    background-color: #f5f7fa;
    border-radius: 3px;
    font-size: 12px;
    color: #666;
}

.resume-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.resume-footer {
    padding: 15px 20px;
    border-top: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resume-update-time {
    font-size: 12px;
    color: #999;
}

.view-btn {
    padding: 6px 12px;
    background-color: #1e88e5;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.view-btn:hover {
    background-color: #1976d2;
}

.view-btn.downloaded {
    background-color: #66bb6a;
}

.empty-result {
    text-align: center;
    padding: 50px 0;
    color: #999;
}

.empty-result i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ddd;
}

.empty-result p {
    font-size: 16px;
}

.sort-options {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.sort-option {
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.sort-option:hover {
    color: #1e88e5;
}

.sort-option.active {
    color: #1e88e5;
    font-weight: 500;
}

.sort-option i {
    margin-left: 5px;
    font-size: 12px;
}

.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.pagination ul li {
    display: inline-block;
}

.pagination ul li a,
.pagination ul li span {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    color: #666;
    background-color: #fff;
    font-size: 14px;
    transition: all 0.3s;
    min-width: 40px;
    text-align: center;
}

.pagination ul li a:hover {
    background-color: #f0f5fc;
    border-color: #1e88e5;
    color: #1e88e5;
    z-index: 2;
    position: relative;
}

.pagination ul li.active span {
    background-color: #1e88e5;
    color: #fff;
    border-color: #1e88e5;
    font-weight: 500;
    z-index: 1;
    position: relative;
}

.pagination ul li.disabled span {
    background-color: #f8f9fa;
    color: #ccc;
    border-color: #eee;
    cursor: not-allowed;
}