<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    background-color: var(--bg-light-color);
}

.news-item .content {
    padding: 10px;
}
.news-item .title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.news-item .date {
    font-size: 0.8rem;
    color: #8b8b8b;
}
.pagination .page-item {
    margin: 0 3px;
}
.pagination .page-link {
    color: var(--primary-font-color);
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}
.pagination .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color:var(--decorate-color);
}

.hot-article {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hot-article img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
}
.hot-article .info {
    flex: 1;
}
.hot-article .info h6 {
    margin: 0;
    font-size: 0.9rem;
}
.hot-article .info p {
    margin: 0.25rem 0 0;
    font-size: 0.8rem;
    color: #6c757d;
}
.article-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.article-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.article-meta {
    font-size: 0.8rem;
    color: #6c757d;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid #ccc;
}
.article-content {
    line-height: 1.8rem;
}
.article-content figure {
    text-align: center;
}
.article-content img {
    max-width: 90%;
    height: auto;
    margin: 5px;

}
.related-articles {
    margin-top: 2rem;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.related-article-item {
    margin-bottom: 1rem;
}
.related-article-item img {
    border-radius: 4px;
}
.related-article-item .title {
    font-size: 1rem;
    margin: 0.5rem 0;
}
.rounded-bottom-left-80 {
    border-bottom-left-radius: 80px;
}

</pre></body></html>