/* 单页面专属样式 */
.page-container {
    max-width: 72rem; /* 1152px */
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.page-header {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    text-align: center;
}

.page-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.page-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    background-color: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    font-size: 0.875rem;
}

.page-tag:hover {
    background-color: rgba(59, 130, 246, 0.2);
}

.page-tag i {
    margin-right: 0.375rem;
}

.page-content {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* 确保内容区prose样式正确显示 */
.page-content-prose {
    width: 100%;
    max-width: 100%;
}

.page-content-prose p,
.page-content-prose ul,
.page-content-prose ol,
.page-content-prose h1,
.page-content-prose h2,
.page-content-prose h3,
.page-content-prose h4,
.page-content-prose h5,
.page-content-prose h6 {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}