/* ===== 招聘通知列表页样式 ===== */
.recruitment-section {
    padding: 50px 0 80px;
    background: #f8f9fa;
}

.page-header {
    background: linear-gradient(135deg, #1a3a5c 0%, #2a5f8f 100%);
    background-size: cover;
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 10% 20%, rgba(66, 133, 244, 0.4) 0%, transparent 40%),
            radial-gradient(circle at 90% 80%, rgba(52, 168, 83, 0.4) 0%, transparent 40%),
            radial-gradient(circle at 50% 50%, rgba(251, 188, 5, 0.3) 0%, transparent 50%);
    z-index: 0;
}
.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}
/*.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 16px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}*/

/* ===== 列表标题 ===== */
.list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid #e0e4e8;
}

.list-header .list-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a3a5c;
    letter-spacing: 1px;
}

.list-header .list-title i {
    color: #2a5f8f;
    margin-right: 8px;
}

.list-header .list-total {
    font-size: 14px;
    color: #999;
}

.list-header .list-total strong {
    color: #2a5f8f;
}

/* ===== 通知列表 ===== */
.notice-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 400px;
}

.notice-item {
    background: #fff;
    border-radius: 12px;
    padding: 22px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: 4px solid transparent;
    cursor: pointer;
}

.notice-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
    border-left-color: #2a5f8f;
}

.notice-item .info {
    flex: 1;
    min-width: 0;
}

.notice-item .info .title {
    font-size: 17px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 6px;
}

.notice-item .info .title a {
    color: #1a3a5c;
    text-decoration: none;
    transition: color 0.3s;
}

.notice-item .info .title a:hover {
    color: #2a5f8f;
}

.notice-item .info .desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-item .info .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 13px;
    color: #aaa;
    margin-top: 6px;
}

.notice-item .info .meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.notice-item .info .meta i {
    width: 14px;
    color: #2a5f8f;
}

.notice-item .info .meta .tag {
    background: #f0f4f8;
    padding: 0 12px;
    border-radius: 10px;
    color: #2a5f8f;
    font-size: 12px;
}

.notice-item .info .meta .tag.hot {
    background: #ff6b6b;
    color: #fff;
}

.notice-item .date {
    flex-shrink: 0;
    text-align: center;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid #f0f4f8;
    min-width: 70px;
}

.notice-item .date .day {
    font-size: 28px;
    font-weight: 700;
    color: #2a5f8f;
    line-height: 1.1;
}

.notice-item .date .month {
    font-size: 13px;
    color: #aaa;
    display: block;
}

/* ===== 分页 ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 8px 16px;
    border: 1px solid #e0e4e8;
    border-radius: 6px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    cursor: pointer;
    user-select: none;
    min-width: 36px;
    text-align: center;
}

.pagination a:hover:not(.disabled):not(.active) {
    background: #e8ecf0;
    border-color: #c8ccd0;
}

.pagination a.active {
    background: #2a5f8f;
    border-color: #2a5f8f;
    color: #fff;
}

.pagination a.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== 加载/空状态 ===== */
.loading-state,
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.loading-state i,
.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.4;
}

.loading-state .spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f0f4f8;
    border-top-color: #2a5f8f;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 30px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .notice-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
        gap: 12px;
    }

    .notice-item .date {
        border-left: none;
        border-top: 1px solid #f0f4f8;
        padding-left: 0;
        margin-left: 0;
        padding-top: 10px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .notice-item .date .day {
        font-size: 20px;
    }

    .notice-item .date .month {
        display: inline;
        font-size: 13px;
    }

    .notice-item .info .desc {
        -webkit-line-clamp: 2;
    }

    .pagination a,
    .pagination span {
        padding: 6px 12px;
        font-size: 13px;
        min-width: 32px;
    }
}
.notice-item {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.notice-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
    transform: translateY(-2px);
    border-left-color: #2a5f8f;
}

.notice-item .notice-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 30px;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.notice-item .notice-link .title {
    font-size: 17px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.notice-item .notice-link:hover .title {
    color: #2a5f8f;
}

.notice-item .notice-link .desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-item .notice-link .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 13px;
    color: #aaa;
    margin-top: 6px;
}

.notice-item .notice-link .date {
    flex-shrink: 0;
    text-align: center;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid #f0f4f8;
    min-width: 70px;
}

.notice-item .notice-link .date .day {
    font-size: 28px;
    font-weight: 700;
    color: #2a5f8f;
    line-height: 1.1;
}

.notice-item .notice-link .date .month {
    font-size: 13px;
    color: #aaa;
    display: block;
}
