/* 文档下载页面样式 - 简洁列表版本 */


/* 主体容器样式 */
.download-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* 页面头部样式 */
.download-header {
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.download-header h1 {
    color: #163762;
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 600;
}

.download-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* 文档内容区域 */
.download-content {
    margin-bottom: 60px;
}

/* 文档区块样式 */
.doc-section {
    margin-bottom: 35px;
}

.section-title {
    color: #163762;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
}

/* 文档列表样式 - 简洁列表 */
.doc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

/* 文档项样式 */
.doc-item {
    border-bottom: 1px solid #e0e0e0;
}

.doc-item:last-child {
    border-bottom: none;
}

/* 文档链接样式 */
.doc-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.doc-item a:hover {
    background-color: #f8f9fa;
    text-decoration: none;
}

/* 文档标题 */
.doc-title {
    font-size: 16px;
    font-weight: 500;
    color: #163762;
    flex-grow: 1;
}

/* 文档元信息 */
.doc-meta {
    font-size: 13px;
    color: #888;
    margin-left: 20px;
    white-space: nowrap;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .download-container {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .download-header h1 {
        font-size: 24px;
    }
    
    .download-header p {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .doc-item a {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 15px;
    }
    
    .doc-title {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .doc-meta {
        font-size: 12px;
        margin-left: 0;
        color: #666;
    }
}

@media (max-width: 480px) {
    .download-header h1 {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 17px;
    }
    
    .doc-title {
        font-size: 14px;
    }
    
    .doc-meta {
        font-size: 11px;
    }
}