.category-container {
    box-sizing: border-box;
    width: 100vw;
    height: calc(100vh - 150px);
    display: flex;
    justify-content: center;
    position: fixed;
}

.category-container .content-container {
    width: 80%;
    height: 90%;
    padding: 4vh 3vw;
}

/* 内容面板样式 */
.category-container .content-container .list-panel {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
}

/* 文章内容样式 */
.category-container .article-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    color: #274071;
    line-height: 1.8;
}

/* 滚动条样式 */
.category-container .article-content::-webkit-scrollbar {
    width: 8px;
}

.category-container .article-content::-webkit-scrollbar-track {
    background: rgba(39, 64, 113, 0.1);
    border-radius: 4px;
}

.category-container .article-content::-webkit-scrollbar-thumb {
    background: rgba(39, 64, 113, 0.5);
    border-radius: 4px;
}

.category-container .article-content::-webkit-scrollbar-thumb:hover {
    background: rgba(39, 64, 113, 0.7);
}

/* 文章内容内部样式 */
.category-container .article-content p {
    font-size: 16px;
}

/* 暂无内容居中显示 */
.category-container .article-content p:only-child {
    text-align: center;
    color: #999;
}

.category-container .article-content video {
    height: 100%;
    width: auto;
}

.category-container .article-content h1,
.category-container .article-content h2,
.category-container .article-content h3,
.category-container .article-content h4,
.category-container .article-content h5,
.category-container .article-content h6 {
    margin: 20px 0 12px;
    color: #274071;
    font-weight: 500;
}

.category-container .article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 12px 0;
}

.category-container .article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
    table-layout: auto;
}

.category-container .article-content table td,
.category-container .article-content table th {
    padding: 8px;
    border: 1px solid rgba(39, 64, 113, 0.2);
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

.category-container .article-content table th {
    background: rgba(39, 64, 113, 0.1);
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .category-container .content-container {
        width: 95%;
        padding: 5vh 2vw;
    }

    .category-container .article-content {
        padding: 15px;
        font-size: 14px;
    }
}


