/* 优秀毕业生页面特定样式 */
.banner {
    position: relative;
    background-image: url(../images/xqbj.png);
    background-size: cover;
    background-position: center;
    height: 500px;
    margin-bottom: 0;
    overflow: hidden;
}

.banner-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.banner-content {
    position: absolute;
    top: 40%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
}

.page-title-main {
    font-size: 70px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-title-en {
    font-size: 36px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 300;
    display: block;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-title-en:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #ffffff;
}

.main-content {
    background-color: #fff;
    padding: 40px 0;
}

.sidebar {
    padding: 0;
    background-color: #fff;
}

.industry-en {
    font-size: 52px;
    font-weight: 400;
    letter-spacing: 0.6px;
    line-height: 71.34px;
    color: rgba(230, 230, 230, 1);
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.industry-cn {
    font-size: 32px;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.blue-line {
    width: 80px;
    height: 3px;
    background-color: #0066cc;
    margin-bottom: 30px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    padding: 0;
    margin-bottom: 20px;
    border-bottom: none;
}

.sidebar-menu li a {
    color: #333;
    display: block;
    padding: 0;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border-bottom: none;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    color: #0066cc;
    background-color: transparent;
}

.sidebar-menu li a.active {
    color: #0066cc;
    font-weight: bold;
    border-bottom: 2px solid #0066cc;
    display: inline-block;
    padding-bottom: 5px;
}

/* 毕业生网格 */
.graduates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .graduates-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.graduate-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.graduate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.graduate-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* 悬浮显示的毕业生信息 */
.graduate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(108, 117, 125, 0.9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.graduate-card:hover .graduate-overlay {
    opacity: 1;
}

.overlay-content {
    padding: 20px;
}

.overlay-content .graduate-name {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.overlay-content .graduate-position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
}

.overlay-content .graduate-company {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-weight: 400;
}

/* 移除旧的graduate-info样式，统一使用悬浮显示 */

/* 分页样式 */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.page-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid #dee2e6;
    border-radius: 0;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.page-item.active .page-link {
    background-color: #0066cc;
    color: #fff;
    border-color: #0066cc;
}

.page-item:not(.active) .page-link:hover {
    background-color: #f8f9fa;
    color: #0066cc;
}

.page-item.disabled .page-link {
    color: #adb5bd;
    pointer-events: none;
    cursor: default;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .banner {
        height: 350px;
    }

    .page-title-main {
        font-size: 48px;
    }

    .page-title-en {
        font-size: 24px;
    }

    .main-content {
        padding: 30px 0;
    }

    .graduates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .graduate-card {
        border-radius: 8px;
    }

    .graduate-image {
        height: 250px;
    }

    .overlay-content {
        padding: 15px;
    }

    .overlay-content .graduate-name {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .overlay-content .graduate-position {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .overlay-content .graduate-company {
        font-size: 12px;
    }

    .graduate-info {
        padding: 12px;
    }

    .graduate-name {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .graduate-position {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .pagination-container {
        margin-top: 30px;
    }

    .page-link {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .graduates-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .graduate-image {
        height: 280px;
    }

    .overlay-content .graduate-name {
        font-size: 16px;
    }

    .overlay-content .graduate-position {
        font-size: 12px;
    }

    .overlay-content .graduate-company {
        font-size: 11px;
    }

    .page-link {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* ==================== 无内容提示样式 ==================== */
.no-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    width: 100%;
}

.no-content-message {
    text-align: center;
    max-width: 400px;
    padding: 40px 20px;
}

.no-content-icon {
    margin-bottom: 24px;
    opacity: 0.6;
}

.no-content-icon svg {
    display: block;
    margin: 0 auto;
    opacity: 0.5;
}

.no-content-title {
    font-size: 24px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

.no-content-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.no-content-btn {
    background-color: #0066cc;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
    display: inline-block;
}

.no-content-btn:hover {
    background-color: #0052a3;
    color: white;
}

/* ==================== 侧边栏增强样式 ==================== */
.sidebar-menu .inactive-menu {
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
    font-size: 18px;
    display: block;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: none;
}

.sidebar-menu a:hover:not(.active) {
    color: #004499;
    border-radius: 4px;
    padding: 8px 12px;
    margin: -8px -12px;
    transition: all 0.2s ease;
}

/* ==================== 分页信息样式 ==================== */
.pagination-info {
    color: #6b7280;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}

/* ==================== 移动端优化 ==================== */
@media (max-width: 768px) {
    .no-content-message {
        padding: 20px 15px;
    }
    
    .no-content-title {
        font-size: 20px;
    }
    
    .no-content-description {
        font-size: 14px;
    }
    
    .no-content-icon svg {
        width: 80px;
        height: 80px;
    }
    
    .pagination-info {
        font-size: 12px;
    }
}