/* 主要样式文件 */
body {
    background-color: #f5f5f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 导航栏样式 */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
}

/* 卡片样式 */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 8px;
}

.card-header {
    border-radius: 8px 8px 0 0 !important;
}

/* 日报和文章内容样式 */
.report-content, .article-content {
    line-height: 1.8;
}

.report-content h1, .article-content h1 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.report-content h2, .article-content h2 {
    font-size: 1.5rem;
    margin-top: 1.2rem;
}

.report-content h3, .article-content h3 {
    font-size: 1.3rem;
}

.report-content ul, .article-content ul {
    margin-bottom: 1rem;
}

.report-content a, .article-content a {
    color: #007bff;
    text-decoration: none;
}

.report-content a:hover, .article-content a:hover {
    text-decoration: underline;
}

/* 表格样式 */
.report-content table, .article-content table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.report-content table th, .report-content table td,
.article-content table th, .article-content table td {
    padding: 0.5rem;
    border: 1px solid #dee2e6;
}

.report-content table th, .article-content table th {
    background-color: #f8f9fa;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .report-content h1, .article-content h1 {
        font-size: 1.5rem;
    }
    
    .report-content h2, .article-content h2 {
        font-size: 1.3rem;
    }
    
    .report-content h3, .article-content h3 {
        font-size: 1.1rem;
    }
}

/* 代码块样式 */
.report-content pre, .article-content pre {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    overflow-x: auto;
    margin-bottom: 1rem;
}

/* 引用块样式 */
.report-content blockquote, .article-content blockquote {
    border-left: 4px solid #dfe2e5;
    padding-left: 1rem;
    color: #6c757d;
    margin-left: 0;
    margin-right: 0;
}

/* 链接样式 */
a.list-group-item:hover {
    transform: translateY(-2px);
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 图片样式 */
.report-content img, .article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 1rem 0;
}

/* 页脚样式 */
.footer {
    margin-top: 3rem;
}

/* 徽章样式 */
.badge {
    font-weight: normal;
    padding: 0.4em 0.6em;
}
