/* 统一文件列表样式，适用于新闻动态、政策文件、教育培训、行业动态 */
html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1 0 auto;
    padding-bottom: 24px;
}

footer {
    flex-shrink: 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

a {
    text-decoration: none;
}

.file-list {
    max-width: 1000px;
    margin: 0 auto;
}

.file-list-custom {
    border-radius: 8px;
    overflow: hidden;
    min-height: 700px;
}

.file-list-custom .file-item-custom {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 1.08rem;
    transition: background 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-list-custom .file-title {
    color: #222;
    font-weight: 500;
    transition: color 0.2s;
}

.file-list-custom .file-date {
    color: #666;
    font-size: 0.98em;
    min-width: 100px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.file-list-custom .file-item-custom:hover .file-title {
    color: #1976d2;
    text-decoration: underline;
}

.file-list-custom .file-item-custom:hover {
    background: #f0f7ff;
}