/* 富文本内容样式 */
.content-body {
    line-height: 1.6;
    color: #333;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #2c3e50;
    font-weight: 600;
}

.content-body h1 {
    font-size: 2em;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.3em;
}

.content-body h2 {
    font-size: 1.5em;
    border-bottom: 1px solid #bdc3c7;
    padding-bottom: 0.2em;
}

.content-body h3 {
    font-size: 1.3em;
}

.content-body p {
    margin-bottom: 1em;
    text-align: justify;
}

.content-body ul,
.content-body ol {
    margin-bottom: 1em;
    padding-left: 2em;
}

.content-body li {
    margin-bottom: 0.5em;
}

.content-body blockquote {
    border-left: 4px solid #3498db;
    margin: 1em 0;
    padding: 0.5em 1em;
    background-color: #f8f9fa;
    font-style: italic;
}

.content-body code {
    background-color: #f1f2f6;
    padding: 0.2em 0.4em;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.content-body pre {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1em;
    border-radius: 5px;
    overflow-x: auto;
    margin: 1em 0;
}

.content-body pre code {
    background-color: transparent;
    color: inherit;
    padding: 0;
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}

.content-body table th,
.content-body table td {
    border: 1px solid #ddd;
    padding: 0.5em;
    text-align: left;
}

.content-body table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 1em 0;
}

.content-body a {
    color: #3498db;
    text-decoration: none;
}

.content-body a:hover {
    text-decoration: underline;
}

.content-body strong {
    font-weight: 600;
    color: #2c3e50;
}

.content-body em {
    font-style: italic;
    color: #7f8c8d;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-body {
        font-size: 0.95em;
    }
    
    .content-body h1 {
        font-size: 1.5em;
    }
    
    .content-body h2 {
        font-size: 1.3em;
    }
    
    .content-body h3 {
        font-size: 1.1em;
    }
} 